home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 1 / Gold Medal Software Volume 1 (Gold Medal) (1994).iso / prog / dasv10_.arj / COUNTUP.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1993-08-09  |  187 b   |  13 lines

  1. // math.lib library function count_up()
  2. #include <iostream.h>
  3.  
  4. void count_up(long x)
  5. {
  6.     long counter=1;
  7.  
  8.     do {
  9.         cout<<" "<<counter;
  10.        } while (++counter<=x);
  11. cout<<"\n";
  12. }
  13.